home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 9
/
The PC-SIG Library on CD ROM - Ninth Edition.iso
/
501_600
/
DISK0510
/
DISK0510.ZIP
/
KEYDFINE
< prev
next >
Wrap
Text File
|
1985-08-08
|
384b
|
13 lines
PROGRAM KEYDFINE; {this defines Ctrl-A to be " := " }
CONST
ESC = 27; {value of escape key}
BEGIN
WRITE(CHR(ESC), '[1;" := "p');
END.
{using this technique and chapter 13 of the DOS manual,
{you can make your own key redefinitions. For example, you
{can change the assignment of function keys in the editor...}